projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8834210
)
Revert "image-fdt: boot_get_fdt() return value when no DTB exists"
author
Tom Rini
<
[email protected]
>
Wed, 3 Dec 2014 18:19:34 +0000
(13:19 -0500)
committer
Tom Rini
<
[email protected]
>
Wed, 3 Dec 2014 18:19:34 +0000
(13:19 -0500)
It has been found that this change breaks the case of an appended device
tree file, so for the problem in question some other solution must be
found.
This reverts commit
c6150aaf2f2745141a7c2ceded58d7efbfeace7d
.
Reported-by: Bill Pringlemeir <
[email protected]
>
Reported-by: Pantelis Antoniou <
[email protected]
>
Confirmed-by: Bill Pringlemeir <
[email protected]
>
Signed-off-by: Tom Rini <
[email protected]
>
common/image-fdt.c
patch
|
blob
|
history
diff --git
a/common/image-fdt.c
b/common/image-fdt.c
index 1d76bd60da843404d9dda64e4c5a93630e7ecb5e..8db3ccb4e7404b5b1f4f0bfca22998414157e0bc 100644
(file)
--- a/
common/image-fdt.c
+++ b/
common/image-fdt.c
@@
-413,11
+413,11
@@
int boot_get_fdt(int flag, int argc, char * const argv[], uint8_t arch,
}
} else {
debug("## No Flattened Device Tree\n");
-
goto error
;
+
return 0
;
}
} else {
debug("## No Flattened Device Tree\n");
-
goto error
;
+
return 0
;
}
*of_flat_tree = fdt_blob;